Average word length |
---|
11.7266 |
word length | percentage |
---|---|
1 | 0.0253 |
2 | 0.2282 |
3 | 1.5945 |
4 | 3.1395 |
5 | 4.8521 |
6 | 5.8172 |
7 | 6.4447 |
8 | 7.3207 |
9 | 7.7334 |
10 | 8.1135 |
11 | 7.8822 |
12 | 7.4093 |
13 | 6.6731 |
14 | 5.9341 |
15 | 5.1748 |
16 | 4.4648 |
17 | 3.7654 |
18 | 3.0996 |
19 | 2.5079 |
20 | 1.9599 |
21 | 1.4905 |
22 | 1.1256 |
23 | 0.8673 |
24 | 0.6313 |
25 | 0.4574 |
26 | 0.3421 |
27 | 0.2498 |
28 | 0.1844 |
29 | 0.1297 |
30 | 0.0939 |
In this subsection we ignore the fact that words have different frequencies. So for the average word length, each word is considered equally. For a fixed word length, we count the number of different words having this length.
The plot of the word length against the number of words of this length usually has a clear maximum between 10 and 15. Moreover, with a logarithmic scale of the y-axis, we get a nearly linear part between length 15 and 40.
Average word length is one of the classic parameters for a language.
Counting without multiplicity makes average word length depending on the corpus size. A larger corpus contains more words, and the additional words are usually longer. Hence, average word length should increase with corpus size.
Average word length:
select avg(char_length(word)) from words where w_id>100;;
Data for large table:
SELECT @all:=count(*) from words where w_id>100;
select char_length(word), 100*count(*)/@all from words where w_id>100 group by char_length;
Do we have the linear part between 15 and 40 for (nearly) all languages?
Where does it come from?
Calculate and compare the slope!
3.5.1.2 Words by Length with multiplicity